home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / MENGER.ZIP / menger / example2.pov < prev    next >
Encoding:
Text File  |  1997-08-17  |  491 b   |  39 lines

  1. #include "colors.inc"
  2. #global_settings
  3. {
  4.  assumed_gamma 1.0
  5. }
  6.  
  7.  
  8.  
  9. light_source { <50 , 20, 10> color White }
  10. light_source { <-50 , -20, 10> color White }
  11.  
  12. camera {
  13.   up y
  14.   right 4/3*x
  15.   direction 2*z
  16.   location <2 , 2, 3>
  17.   look_at  <0 , 0, 0>
  18. }
  19.  
  20. #declare MENGER_DEPTH = 3
  21. #declare MENGER_SHAPE =
  22. sphere { <0,0,0>, 0.5 }
  23. //#declare MENGER_SUBSHAPE =
  24. //sphere { <0,0,0>, 0.5 }
  25.  
  26. #include "menger.inc"
  27.  
  28. object {
  29.    MENGER_OBJECT
  30.    pigment {color Red}
  31. }
  32.  
  33.  
  34. background{color NewMidnightBlue}
  35.  
  36.  
  37.  
  38.  
  39.